300 |
How can I change the font for entire item
local f,oComboBox,var_Items oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject oComboBox.Columns.Add("Default") oComboBox.Items.AddItem("default font") f = new OleAutoClient("StdFont") f.Name = "Tahoma" f.Size = 12 var_Items = oComboBox.Items // var_Items.ItemFont(var_Items.AddItem("new font")) = f with (oComboBox) TemplateDef = [dim var_Items] TemplateDef = var_Items Template = [var_Items.ItemFont(AddItem("new font")) = f] endwith |
299 |
How do I vertically align a cell
local h,oComboBox,var_Column,var_Items oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject oComboBox.DrawGridLines = -2 // oComboBox.Columns.Add("MultipleLine").Def(16) = false var_Column = oComboBox.Columns.Add("MultipleLine") with (oComboBox) TemplateDef = [dim var_Column] TemplateDef = var_Column Template = [var_Column.Def(16) = False] endwith oComboBox.Columns.Add("VAlign") var_Items = oComboBox.Items h = var_Items.AddItem("This is a bit of long text that should break the line") // var_Items.CellCaption(h,1) = "top" with (oComboBox) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.CellCaption(h,1) = "top"] endwith // var_Items.CellVAlignment(h,1) = 0 with (oComboBox) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.CellVAlignment(h,1) = 0] endwith h = var_Items.AddItem("This is a bit of long text that should break the line") // var_Items.CellCaption(h,1) = "middle" with (oComboBox) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.CellCaption(h,1) = "middle"] endwith // var_Items.CellVAlignment(h,1) = 1 with (oComboBox) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.CellVAlignment(h,1) = 1] endwith h = var_Items.AddItem("This is a bit of long text that should break the line") // var_Items.CellCaption(h,1) = "bottom" with (oComboBox) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.CellCaption(h,1) = "bottom"] endwith // var_Items.CellVAlignment(h,1) = 2 with (oComboBox) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.CellVAlignment(h,1) = 2] endwith |
298 |
How can I change the position of an item
local oComboBox,var_Items oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject oComboBox.Columns.Add("Default") var_Items = oComboBox.Items var_Items.AddItem("Item 1") var_Items.AddItem("Item 2") // var_Items.ItemPosition(var_Items.AddItem("Item 3")) = 0 with (oComboBox) TemplateDef = [dim var_Items] TemplateDef = var_Items Template = [var_Items.ItemPosition(AddItem("Item 3")) = 0] endwith |
297 |
How do I find an item based on a path
|
296 |
How do I find an item
local h,oComboBox,var_Items oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject oComboBox.Columns.Add("Default") var_Items = oComboBox.Items h = var_Items.AddItem("Root 1") var_Items.InsertItem(h,null,"Child 1") var_Items.InsertItem(h,null,"Child 2") // var_Items.ExpandItem(h) = true with (oComboBox) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.ExpandItem(h) = True] endwith // var_Items.ItemBold(var_Items.FindItem("Child 2",0)) = true with (oComboBox) TemplateDef = [dim var_Items] TemplateDef = var_Items Template = [var_Items.ItemBold(FindItem("Child 2",0)) = True] endwith |
295 |
How can I insert a hyperlink or an anchor element
local oComboBox,var_Items,var_Items1 oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject oComboBox.Columns.Add("Column") var_Items = oComboBox.Items // var_Items.CellCaptionFormat(var_Items.AddItem("Just an <a1>anchor</a> element ..."),0) = 1 with (oComboBox) TemplateDef = [dim var_Items] TemplateDef = var_Items Template = [var_Items.CellCaptionFormat(AddItem("Just an <a1>anchor</a> element ..."),0) = 1] endwith var_Items1 = oComboBox.Items // var_Items1.CellCaptionFormat(var_Items1.AddItem("Just another <a2>anchor</a> element ..."),0) = 1 with (oComboBox) TemplateDef = [dim var_Items1] TemplateDef = var_Items1 Template = [var_Items1.CellCaptionFormat(AddItem("Just another <a2>anchor</a> element ..."),0) = 1] endwith |
294 |
How do I find the index of the item based on its handle
local h,oComboBox,var_Items oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject oComboBox.Columns.Add("Default") var_Items = oComboBox.Items h = var_Items.AddItem("Root 1") var_Items.InsertItem(h,null,"Child 1") var_Items.InsertItem(h,null,"Child 2") // var_Items.ExpandItem(h) = true with (oComboBox) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.ExpandItem(h) = True] endwith // var_Items.ItemBold(var_Items.ItemByIndex(var_Items.ItemToIndex(h))) = true with (oComboBox) TemplateDef = [dim var_Items] TemplateDef = var_Items Template = [var_Items.ItemBold(ItemByIndex(ItemToIndex(h))) = True] endwith |
293 |
How do I find the handle of the item based on its index
local h,oComboBox,var_Items oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject oComboBox.Columns.Add("Default") var_Items = oComboBox.Items h = var_Items.AddItem("Root 1") var_Items.InsertItem(h,null,"Child 1") var_Items.InsertItem(h,null,"Child 2") // var_Items.ExpandItem(h) = true with (oComboBox) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.ExpandItem(h) = True] endwith // var_Items.ItemBold(var_Items.ItemByIndex(1)) = true with (oComboBox) TemplateDef = [dim var_Items] TemplateDef = var_Items Template = [var_Items.ItemBold(ItemByIndex(1)) = True] endwith |
292 |
How can I find the cell being clicked in a radio group
local h,oComboBox,var_Items oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject oComboBox.MarkSearchColumn = false oComboBox.SelBackColor = 0x80ffff oComboBox.SelForeColor = 0x0 oComboBox.Columns.Add("C1") oComboBox.Columns.Add("C2") oComboBox.Columns.Add("C3") var_Items = oComboBox.Items h = var_Items.AddItem("Cell 1") // var_Items.CellCaption(h,1) = "Radio 1" with (oComboBox) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.CellCaption(h,1) = "Radio 1"] endwith // var_Items.CellHasRadioButton(h,1) = true with (oComboBox) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.CellHasRadioButton(h,1) = True] endwith // var_Items.CellRadioGroup(h,1) = 1234 with (oComboBox) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.CellRadioGroup(h,1) = 1234] endwith // var_Items.CellCaption(h,2) = "Radio 2" with (oComboBox) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.CellCaption(h,2) = "Radio 2"] endwith // var_Items.CellHasRadioButton(h,2) = true with (oComboBox) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.CellHasRadioButton(h,2) = True] endwith // var_Items.CellRadioGroup(h,2) = 1234 with (oComboBox) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.CellRadioGroup(h,2) = 1234] endwith // var_Items.CellState(h,1) = 1 with (oComboBox) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.CellState(h,1) = 1] endwith // var_Items.CellBold(null,var_Items.CellChecked(1234)) = true with (oComboBox) TemplateDef = [dim var_Items] TemplateDef = var_Items Template = [var_Items.CellBold(,CellChecked(1234)) = True] endwith |
291 |
Can I add a +/- ( expand / collapse ) buttons to each item, so I can load the child items later
local oComboBox,var_Items oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject oComboBox.LinesAtRoot = -1 oComboBox.Columns.Add("Default") var_Items = oComboBox.Items // var_Items.ItemHasChildren(var_Items.AddItem("parent item with no child items")) = true with (oComboBox) TemplateDef = [dim var_Items] TemplateDef = var_Items Template = [var_Items.ItemHasChildren(AddItem("parent item with no child items")) = True] endwith var_Items.AddItem("next item") |
290 |
Can I let the user to resize at runtime the specified item
|
289 |
How can I change the size ( width, height ) of the picture
local h,oComboBox,var_Items oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject oComboBox.Columns.Add("Default") var_Items = oComboBox.Items h = var_Items.AddItem("Root 1") // var_Items.CellPicture(h,0) = oComboBox.ExecuteTemplate("loadpicture(`c:\exontrol\images\zipdisk.gif`)") with (oComboBox) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.CellPicture(h,0) = Me.ExecuteTemplate("loadpicture(`c:\exontrol\images\zipdisk.gif`)")] endwith // var_Items.CellPictureWidth(h,0) = 24 with (oComboBox) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.CellPictureWidth(h,0) = 24] endwith // var_Items.CellPictureHeight(h,0) = 24 with (oComboBox) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.CellPictureHeight(h,0) = 24] endwith // var_Items.ItemHeight(h) = 32 with (oComboBox) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.ItemHeight(h) = 32] endwith h = var_Items.AddItem("Root 2") // var_Items.CellPicture(h,0) = oComboBox.ExecuteTemplate("loadpicture(`c:\exontrol\images\zipdisk.gif`)") with (oComboBox) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.CellPicture(h,0) = Me.ExecuteTemplate("loadpicture(`c:\exontrol\images\zipdisk.gif`)")] endwith // var_Items.ItemHeight(h) = 48 with (oComboBox) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.ItemHeight(h) = 48] endwith |
288 |
How do I unselect an item
local h,oComboBox,var_Items oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject oComboBox.Columns.Add("Default") var_Items = oComboBox.Items h = var_Items.AddItem("Root 1") var_Items.InsertItem(h,null,"Child 1") var_Items.InsertItem(h,null,"Child 2") // var_Items.ExpandItem(h) = true with (oComboBox) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.ExpandItem(h) = True] endwith // var_Items.SelectItem(h) = false with (oComboBox) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.SelectItem(h) = False] endwith |
287 |
How do I find the selected item
local h,oComboBox,var_Items oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject oComboBox.Columns.Add("Default") var_Items = oComboBox.Items h = var_Items.AddItem("Root 1") var_Items.InsertItem(h,null,"Child 1") var_Items.InsertItem(h,null,"Child 2") // var_Items.ExpandItem(h) = true with (oComboBox) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.ExpandItem(h) = True] endwith // var_Items.SelectItem(h) = true with (oComboBox) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.SelectItem(h) = True] endwith // var_Items.ItemBold(var_Items.SelectedItem(0)) = true with (oComboBox) TemplateDef = [dim var_Items] TemplateDef = var_Items Template = [var_Items.ItemBold(SelectedItem(0)) = True] endwith |
286 |
How do I select an item
local h,oComboBox,var_Items oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject oComboBox.Columns.Add("Default") var_Items = oComboBox.Items h = var_Items.AddItem("Root 1") var_Items.InsertItem(h,null,"Child 1") var_Items.InsertItem(h,null,"Child 2") // var_Items.ExpandItem(h) = true with (oComboBox) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.ExpandItem(h) = True] endwith // var_Items.SelectItem(h) = true with (oComboBox) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.SelectItem(h) = True] endwith |
285 |
Can I display a button with some picture or icon inside
local h,oComboBox,var_Items oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject oComboBox.Template = [HTMLPicture("p1") = "c:\exontrol\images\zipdisk.gif"] // oComboBox.HTMLPicture("p1") = "c:\exontrol\images\zipdisk.gif" oComboBox.Columns.Add("C1") oComboBox.Columns.Add("C2") var_Items = oComboBox.Items h = var_Items.AddItem("Cell 1") // var_Items.CellCaption(h,1) = " Button <img>p1</img> " with (oComboBox) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.CellCaption(h,1) = " Button <img>p1</img> "] endwith // var_Items.CellCaptionFormat(h,1) = 1 with (oComboBox) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.CellCaptionFormat(h,1) = 1] endwith // var_Items.CellHAlignment(h,1) = 2 with (oComboBox) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.CellHAlignment(h,1) = 2] endwith // var_Items.CellHasButton(h,1) = true with (oComboBox) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.CellHasButton(h,1) = True] endwith // var_Items.ItemHeight(h) = 48 with (oComboBox) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.ItemHeight(h) = 48] endwith |
284 |
Can I display a button with some picture or icon inside
|
283 |
Can I display a button with some icon inside
|
282 |
How can I assign multiple icon/picture to a cell
local h,oComboBox,var_Items oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject oComboBox.Template = [HTMLPicture("p1") = "c:\exontrol\images\zipdisk.gif"] // oComboBox.HTMLPicture("p1") = "c:\exontrol\images\zipdisk.gif" oComboBox.Template = [HTMLPicture("p2") = "c:\exontrol\images\auction.gif"] // oComboBox.HTMLPicture("p2") = "c:\exontrol\images\auction.gif" oComboBox.Columns.Add("Default") var_Items = oComboBox.Items h = var_Items.AddItem("text <img>p1</img> another picture <img>p2</img> and so on") // var_Items.CellCaptionFormat(h,0) = 1 with (oComboBox) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.CellCaptionFormat(h,0) = 1] endwith // var_Items.CellPicture(h,0) = oComboBox.ExecuteTemplate("loadpicture(`c:\exontrol\images\colorize.gif`)") with (oComboBox) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.CellPicture(h,0) = Me.ExecuteTemplate("loadpicture(`c:\exontrol\images\colorize.gif`)")] endwith // var_Items.ItemHeight(h) = 48 with (oComboBox) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.ItemHeight(h) = 48] endwith var_Items.AddItem("Root 2") |
281 |
How can I assign an icon/picture to a cell
local h,oComboBox,var_Items oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject oComboBox.Columns.Add("Default") var_Items = oComboBox.Items h = var_Items.AddItem("Root 1") // var_Items.CellPicture(h,0) = oComboBox.ExecuteTemplate("loadpicture(`c:\exontrol\images\zipdisk.gif`)") with (oComboBox) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.CellPicture(h,0) = Me.ExecuteTemplate("loadpicture(`c:\exontrol\images\zipdisk.gif`)")] endwith // var_Items.ItemHeight(h) = 48 with (oComboBox) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.ItemHeight(h) = 48] endwith var_Items.AddItem("Root 2") |
280 |
How can I assign multiple icons/pictures to a cell
|
279 |
How can I assign multiple icons/pictures to a cell
|
278 |
How can I assign an icon/picture to a cell
|
277 |
How can I get the handle of an item based on the handle of the cell
local h,oComboBox,var_Items oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject oComboBox.Columns.Add("Default") var_Items = oComboBox.Items h = var_Items.AddItem("Root 1") var_Items.InsertItem(h,null,"Child 1") var_Items.InsertItem(h,null,"Child 2") // var_Items.ExpandItem(h) = true with (oComboBox) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.ExpandItem(h) = True] endwith // var_Items.ItemBold(var_Items.CellItem(var_Items.ItemCell(h,0))) = true with (oComboBox) TemplateDef = [dim var_Items] TemplateDef = var_Items Template = [var_Items.ItemBold(CellItem(ItemCell(h,0))) = True] endwith |
276 |
How can I display a button inside the item or cell
local h,oComboBox,var_Items oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject oComboBox.Columns.Add("C1") oComboBox.Columns.Add("C2") var_Items = oComboBox.Items h = var_Items.AddItem("Cell 1") // var_Items.CellCaption(h,1) = " Button 1 " with (oComboBox) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.CellCaption(h,1) = " Button 1 "] endwith // var_Items.CellHAlignment(h,1) = 2 with (oComboBox) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.CellHAlignment(h,1) = 2] endwith // var_Items.CellHasButton(h,1) = true with (oComboBox) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.CellHasButton(h,1) = True] endwith h = var_Items.AddItem("Cell 2") // var_Items.CellCaption(h,1) = " Button 2 " with (oComboBox) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.CellCaption(h,1) = " Button 2 "] endwith // var_Items.CellHAlignment(h,1) = 1 with (oComboBox) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.CellHAlignment(h,1) = 1] endwith // var_Items.CellHasButton(h,1) = true with (oComboBox) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.CellHasButton(h,1) = True] endwith |
275 |
How can I change the state of a radio button
local h,oComboBox,var_Items oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject oComboBox.MarkSearchColumn = false oComboBox.SelBackColor = 0x80ffff oComboBox.SelForeColor = 0x0 oComboBox.Columns.Add("C1") oComboBox.Columns.Add("C2") oComboBox.Columns.Add("C3") var_Items = oComboBox.Items h = var_Items.AddItem("Cell 1") // var_Items.CellCaption(h,1) = "Radio 1" with (oComboBox) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.CellCaption(h,1) = "Radio 1"] endwith // var_Items.CellHasRadioButton(h,1) = true with (oComboBox) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.CellHasRadioButton(h,1) = True] endwith // var_Items.CellRadioGroup(h,1) = 1234 with (oComboBox) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.CellRadioGroup(h,1) = 1234] endwith // var_Items.CellCaption(h,2) = "Radio 2" with (oComboBox) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.CellCaption(h,2) = "Radio 2"] endwith // var_Items.CellHasRadioButton(h,2) = true with (oComboBox) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.CellHasRadioButton(h,2) = True] endwith // var_Items.CellRadioGroup(h,2) = 1234 with (oComboBox) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.CellRadioGroup(h,2) = 1234] endwith // var_Items.CellState(h,1) = 1 with (oComboBox) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.CellState(h,1) = 1] endwith |
274 |
How can I assign a radio button to a cell
local h,oComboBox,var_Items oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject oComboBox.MarkSearchColumn = false oComboBox.SelBackColor = 0x80ffff oComboBox.SelForeColor = 0x0 oComboBox.Columns.Add("C1") oComboBox.Columns.Add("C2") oComboBox.Columns.Add("C3") var_Items = oComboBox.Items h = var_Items.AddItem("Cell 1") // var_Items.CellCaption(h,1) = "Radio 1" with (oComboBox) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.CellCaption(h,1) = "Radio 1"] endwith // var_Items.CellHasRadioButton(h,1) = true with (oComboBox) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.CellHasRadioButton(h,1) = True] endwith // var_Items.CellRadioGroup(h,1) = 1234 with (oComboBox) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.CellRadioGroup(h,1) = 1234] endwith // var_Items.CellCaption(h,2) = "Radio 2" with (oComboBox) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.CellCaption(h,2) = "Radio 2"] endwith // var_Items.CellHasRadioButton(h,2) = true with (oComboBox) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.CellHasRadioButton(h,2) = True] endwith // var_Items.CellRadioGroup(h,2) = 1234 with (oComboBox) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.CellRadioGroup(h,2) = 1234] endwith // var_Items.CellState(h,1) = 1 with (oComboBox) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.CellState(h,1) = 1] endwith |
273 |
How can I change the state of a checkbox
local h,oComboBox,var_Items oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject oComboBox.Columns.Add("C1") oComboBox.Columns.Add("C2") var_Items = oComboBox.Items h = var_Items.AddItem("Cell 1") // var_Items.CellCaption(h,1) = "Check Box" with (oComboBox) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.CellCaption(h,1) = "Check Box"] endwith // var_Items.CellHasCheckBox(h,1) = true with (oComboBox) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.CellHasCheckBox(h,1) = True] endwith // var_Items.CellState(h,1) = 1 with (oComboBox) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.CellState(h,1) = 1] endwith |
272 |
How can I assign a checkbox to a cell
local h,oComboBox,var_Items oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject oComboBox.Columns.Add("C1") oComboBox.Columns.Add("C2") var_Items = oComboBox.Items h = var_Items.AddItem("Cell 1") // var_Items.CellCaption(h,1) = "Check Box" with (oComboBox) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.CellCaption(h,1) = "Check Box"] endwith // var_Items.CellHasCheckBox(h,1) = true with (oComboBox) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.CellHasCheckBox(h,1) = True] endwith |
271 |
How can I display an item or a cell on multiple lines
|
270 |
How can I assign a tooltip to a cell
local h,oComboBox,var_Items oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject oComboBox.Columns.Add("C1") oComboBox.Columns.Add("C2") var_Items = oComboBox.Items h = var_Items.AddItem("Cell 1") // var_Items.CellCaption(h,1) = "tooltip" with (oComboBox) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.CellCaption(h,1) = "tooltip"] endwith // var_Items.CellToolTip(h,1) = "This is bit of text that's shown when the user hovers the cell" with (oComboBox) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.CellToolTip(h,1) = "This is bit of text that's shown when the user hovers the cell"] endwith |
269 |
How can I associate an extra data to a cell
local h,oComboBox,var_Items oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject oComboBox.Columns.Add("C1") oComboBox.Columns.Add("C2") var_Items = oComboBox.Items h = var_Items.AddItem("Cell 1") // var_Items.CellCaption(h,1) = "Cell 2" with (oComboBox) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.CellCaption(h,1) = "Cell 2"] endwith // var_Items.CellData(h,1) = "your extra data" with (oComboBox) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.CellData(h,1) = "your extra data"] endwith |
268 |
How do I enable or disable a cell
local h,oComboBox,var_Items oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject oComboBox.Columns.Add("C1") oComboBox.Columns.Add("C2") var_Items = oComboBox.Items h = var_Items.AddItem("Cell 1") // var_Items.CellCaption(h,1) = "Cell 2" with (oComboBox) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.CellCaption(h,1) = "Cell 2"] endwith // var_Items.CellEnabled(h,1) = false with (oComboBox) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.CellEnabled(h,1) = False] endwith |
267 |
How do I change the cell's foreground color
local h,oComboBox,var_Items oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject oComboBox.Columns.Add("C1") oComboBox.Columns.Add("C2") var_Items = oComboBox.Items h = var_Items.AddItem("Cell 1") // var_Items.CellCaption(h,1) = "Cell 2" with (oComboBox) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.CellCaption(h,1) = "Cell 2"] endwith // var_Items.CellForeColor(h,1) = 0xff with (oComboBox) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.CellForeColor(h,1) = 255] endwith |
266 |
How do I change the visual effect for the cell, using your EBN files
local h,oComboBox,var_Items oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject oComboBox.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn") oComboBox.Columns.Add("C1") oComboBox.Columns.Add("C2") var_Items = oComboBox.Items h = var_Items.AddItem("Cell 1") // var_Items.CellCaption(h,1) = "Cell 2" with (oComboBox) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.CellCaption(h,1) = "Cell 2"] endwith // var_Items.CellBackColor(h,1) = 0x1000000 with (oComboBox) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.CellBackColor(h,1) = 16777216] endwith |
265 |
How do I change the cell's background color
local h,oComboBox,var_Items oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject oComboBox.Columns.Add("C1") oComboBox.Columns.Add("C2") var_Items = oComboBox.Items h = var_Items.AddItem("Cell 1") // var_Items.CellCaption(h,1) = "Cell 2" with (oComboBox) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.CellCaption(h,1) = "Cell 2"] endwith // var_Items.CellBackColor(h,1) = 0xff with (oComboBox) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.CellBackColor(h,1) = 255] endwith |
264 |
How do I change the caption or value for a particular cell
local oComboBox,var_Items oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject oComboBox.Columns.Add("C1") oComboBox.Columns.Add("C2") var_Items = oComboBox.Items // var_Items.CellCaption(var_Items.AddItem("Cell 1"),1) = "Cell 2" with (oComboBox) TemplateDef = [dim var_Items] TemplateDef = var_Items Template = [var_Items.CellCaption(AddItem("Cell 1"),1) = "Cell 2"] endwith |
263 |
How do I get the handle of the cell
local h,oComboBox,var_Items oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject oComboBox.Columns.Add("Default") var_Items = oComboBox.Items h = var_Items.AddItem("Root 1") var_Items.InsertItem(h,null,"Child 1") var_Items.InsertItem(h,null,"Child 2") // var_Items.ExpandItem(h) = true with (oComboBox) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.ExpandItem(h) = True] endwith // var_Items.CellBold(null,var_Items.ItemCell(h,0)) = true with (oComboBox) TemplateDef = [dim var_Items] TemplateDef = var_Items Template = [var_Items.CellBold(,ItemCell(h,0)) = True] endwith |
262 |
How do I retrieve the focused item
local h,oComboBox,var_Items oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject oComboBox.Columns.Add("Default") var_Items = oComboBox.Items h = var_Items.AddItem("Root 1") var_Items.InsertItem(h,null,"Child 1") var_Items.InsertItem(h,null,"Child 2") // var_Items.ExpandItem(h) = true with (oComboBox) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.ExpandItem(h) = True] endwith // var_Items.ItemBold(var_Items.FocusItem) = true with (oComboBox) TemplateDef = [dim var_Items] TemplateDef = var_Items Template = [var_Items.ItemBold(FocusItem) = True] endwith |
261 |
How do I get the number or count of child items
local h,oComboBox,var_Items oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject oComboBox.Columns.Add("Default") var_Items = oComboBox.Items h = var_Items.AddItem("Root 1") var_Items.InsertItem(h,null,"Child 1") var_Items.InsertItem(h,null,"Child 2") // var_Items.ExpandItem(h) = true with (oComboBox) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.ExpandItem(h) = True] endwith var_Items.AddItem(var_Items.ChildCount(h)) |
260 |
How do I enumerate the visible items
local h,oComboBox,var_Items oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject oComboBox.Columns.Add("Default") var_Items = oComboBox.Items h = var_Items.AddItem("Root 1") var_Items.InsertItem(h,null,"Child 1") var_Items.InsertItem(h,null,"Child 2") // var_Items.ExpandItem(h) = true with (oComboBox) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.ExpandItem(h) = True] endwith h = var_Items.AddItem("Root 2") // var_Items.ItemBold(var_Items.FirstVisibleItem) = true with (oComboBox) TemplateDef = [dim var_Items] TemplateDef = var_Items Template = [var_Items.ItemBold(FirstVisibleItem) = True] endwith // var_Items.ItemBold(var_Items.NextVisibleItem(var_Items.FirstVisibleItem)) = true with (oComboBox) TemplateDef = [dim var_Items] TemplateDef = var_Items Template = [var_Items.ItemBold(NextVisibleItem(FirstVisibleItem)) = True] endwith |
259 |
How do I enumerate the siblings items
local h,oComboBox,var_Items oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject oComboBox.Columns.Add("Default") var_Items = oComboBox.Items h = var_Items.AddItem("Root 1") var_Items.InsertItem(h,null,"Child 1") var_Items.InsertItem(h,null,"Child 2") // var_Items.ExpandItem(h) = true with (oComboBox) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.ExpandItem(h) = True] endwith h = var_Items.AddItem("Root 2") // var_Items.ItemBold(var_Items.NextSiblingItem(var_Items.FirstVisibleItem)) = true with (oComboBox) TemplateDef = [dim var_Items] TemplateDef = var_Items Template = [var_Items.ItemBold(NextSiblingItem(FirstVisibleItem)) = True] endwith // var_Items.ItemBold(var_Items.PrevSiblingItem(var_Items.NextSiblingItem(var_Items.FirstVisibleItem))) = true with (oComboBox) TemplateDef = [dim var_Items] TemplateDef = var_Items Template = [var_Items.ItemBold(PrevSiblingItem(NextSiblingItem(FirstVisibleItem))) = True] endwith |
258 |
How do I get the parent item
local h,oComboBox,var_Items oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject oComboBox.Columns.Add("Default") var_Items = oComboBox.Items h = var_Items.AddItem("Root 1") var_Items.InsertItem(h,null,"Child 1") var_Items.InsertItem(h,null,"Child 2") // var_Items.ExpandItem(h) = true with (oComboBox) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.ExpandItem(h) = True] endwith // var_Items.ItemBold(var_Items.ItemParent(var_Items.ItemChild(h))) = true with (oComboBox) TemplateDef = [dim var_Items] TemplateDef = var_Items Template = [var_Items.ItemBold(ItemParent(ItemChild(h))) = True] endwith |
257 |
How do I get the first child item
local h,oComboBox,var_Items oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject oComboBox.Columns.Add("Default") var_Items = oComboBox.Items h = var_Items.AddItem("Root 1") var_Items.InsertItem(h,null,"Child 1") var_Items.InsertItem(h,null,"Child 2") // var_Items.ExpandItem(h) = true with (oComboBox) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.ExpandItem(h) = True] endwith // var_Items.ItemBold(var_Items.ItemChild(h)) = true with (oComboBox) TemplateDef = [dim var_Items] TemplateDef = var_Items Template = [var_Items.ItemBold(ItemChild(h)) = True] endwith |
256 |
How do I enumerate the root items
local h,oComboBox,var_Items oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject oComboBox.Columns.Add("Default") var_Items = oComboBox.Items h = var_Items.AddItem("Root 1") var_Items.InsertItem(h,null,"Child 1") var_Items.InsertItem(h,null,"Child 2") // var_Items.ExpandItem(h) = true with (oComboBox) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.ExpandItem(h) = True] endwith h = var_Items.AddItem("Root 2") var_Items.InsertItem(h,null,"Child 1") var_Items.InsertItem(h,null,"Child 2") // var_Items.ItemBold(var_Items.RootItem(0)) = true with (oComboBox) TemplateDef = [dim var_Items] TemplateDef = var_Items Template = [var_Items.ItemBold(RootItem(0)) = True] endwith // var_Items.ItemUnderline(var_Items.RootItem(1)) = true with (oComboBox) TemplateDef = [dim var_Items] TemplateDef = var_Items Template = [var_Items.ItemUnderline(RootItem(1)) = True] endwith |
255 |
I have a hierarchy, how can I count the number of root items
local h,oComboBox,var_Items oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject oComboBox.Columns.Add("Default") var_Items = oComboBox.Items h = var_Items.AddItem("Root 1") var_Items.InsertItem(h,null,"Child 1") var_Items.InsertItem(h,null,"Child 2") // var_Items.ExpandItem(h) = true with (oComboBox) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.ExpandItem(h) = True] endwith h = var_Items.AddItem("Root 2") var_Items.InsertItem(h,null,"Child 1") var_Items.InsertItem(h,null,"Child 2") var_Items.AddItem(var_Items.RootCount) |
254 |
How can I make an item unselectable, or not selectable
local h,oComboBox,var_Items oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject oComboBox.Columns.Add("Column") var_Items = oComboBox.Items h = var_Items.AddItem("unselectable - you can't get selected") // var_Items.SelectableItem(h) = false with (oComboBox) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.SelectableItem(h) = False] endwith var_Items.AddItem("selectable") |
253 |
How can I hide or show an item
local h,oComboBox,var_Items oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject oComboBox.Columns.Add("Column") var_Items = oComboBox.Items h = var_Items.AddItem("hidden") // var_Items.ItemHeight(h) = 0 with (oComboBox) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.ItemHeight(h) = 0] endwith // var_Items.SelectableItem(h) = false with (oComboBox) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.SelectableItem(h) = False] endwith var_Items.AddItem("visible") |
252 |
How can I change the height for all items
|
251 |
How do I change the height of an item
|
250 |
How do I disable or enable an item
local oComboBox,var_Items oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject oComboBox.Columns.Add("Default") var_Items = oComboBox.Items // var_Items.EnableItem(var_Items.AddItem("disabled")) = false with (oComboBox) TemplateDef = [dim var_Items] TemplateDef = var_Items Template = [var_Items.EnableItem(AddItem("disabled")) = False] endwith oComboBox.Items.AddItem("enabled") |
249 |
How do I display as strikeout a cell
local oComboBox,var_Items oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject oComboBox.Columns.Add("Default") var_Items = oComboBox.Items // var_Items.CellStrikeOut(var_Items.AddItem("strikeout"),0) = true with (oComboBox) TemplateDef = [dim var_Items] TemplateDef = var_Items Template = [var_Items.CellStrikeOut(AddItem("strikeout"),0) = True] endwith |
248 |
How do I display as strikeout a cell or an item
local oComboBox,var_Items oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject oComboBox.Columns.Add("Default") var_Items = oComboBox.Items // var_Items.CellCaptionFormat(var_Items.AddItem("gets <s>strikeout</s> only a portion of text"),0) = 1 with (oComboBox) TemplateDef = [dim var_Items] TemplateDef = var_Items Template = [var_Items.CellCaptionFormat(AddItem("gets <s>strikeout</s> only a portion of text"),0) = 1] endwith |
247 |
How do I display as strikeout an item
local oComboBox,var_Items oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject oComboBox.Columns.Add("Default") var_Items = oComboBox.Items // var_Items.ItemStrikeOut(var_Items.AddItem("strikeout")) = true with (oComboBox) TemplateDef = [dim var_Items] TemplateDef = var_Items Template = [var_Items.ItemStrikeOut(AddItem("strikeout")) = True] endwith |
246 |
How do I underline a cell
local oComboBox,var_Items oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject oComboBox.Columns.Add("Default") var_Items = oComboBox.Items // var_Items.CellUnderline(var_Items.AddItem("underline"),0) = true with (oComboBox) TemplateDef = [dim var_Items] TemplateDef = var_Items Template = [var_Items.CellUnderline(AddItem("underline"),0) = True] endwith |
245 |
How do I underline a cell or an item
local oComboBox,var_Items oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject oComboBox.Columns.Add("Default") var_Items = oComboBox.Items // var_Items.CellCaptionFormat(var_Items.AddItem("gets <u>underline</u> only a portion of text"),0) = 1 with (oComboBox) TemplateDef = [dim var_Items] TemplateDef = var_Items Template = [var_Items.CellCaptionFormat(AddItem("gets <u>underline</u> only a portion of text"),0) = 1] endwith |
244 |
How do I underline an item
local oComboBox,var_Items oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject oComboBox.Columns.Add("Default") var_Items = oComboBox.Items // var_Items.ItemUnderline(var_Items.AddItem("underline")) = true with (oComboBox) TemplateDef = [dim var_Items] TemplateDef = var_Items Template = [var_Items.ItemUnderline(AddItem("underline")) = True] endwith |
243 |
How do I display as italic a cell
local oComboBox,var_Items oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject oComboBox.Columns.Add("Default") var_Items = oComboBox.Items // var_Items.CellItalic(var_Items.AddItem("italic"),0) = true with (oComboBox) TemplateDef = [dim var_Items] TemplateDef = var_Items Template = [var_Items.CellItalic(AddItem("italic"),0) = True] endwith |
242 |
How do I display as italic a cell or an item
local oComboBox,var_Items oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject oComboBox.Columns.Add("Default") var_Items = oComboBox.Items // var_Items.CellCaptionFormat(var_Items.AddItem("gets <i>italic</i> only a portion of text"),0) = 1 with (oComboBox) TemplateDef = [dim var_Items] TemplateDef = var_Items Template = [var_Items.CellCaptionFormat(AddItem("gets <i>italic</i> only a portion of text"),0) = 1] endwith |
241 |
How do I display as italic an item
local oComboBox,var_Items oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject oComboBox.Columns.Add("Default") var_Items = oComboBox.Items // var_Items.ItemItalic(var_Items.AddItem("italic")) = true with (oComboBox) TemplateDef = [dim var_Items] TemplateDef = var_Items Template = [var_Items.ItemItalic(AddItem("italic")) = True] endwith |
240 |
How do I bold a cell
local oComboBox,var_Items oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject oComboBox.Columns.Add("Default") var_Items = oComboBox.Items // var_Items.CellBold(var_Items.AddItem("bold"),0) = true with (oComboBox) TemplateDef = [dim var_Items] TemplateDef = var_Items Template = [var_Items.CellBold(AddItem("bold"),0) = True] endwith |
239 |
How do I bold a cell or an item
local oComboBox,var_Items oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject oComboBox.Columns.Add("Default") var_Items = oComboBox.Items // var_Items.CellCaptionFormat(var_Items.AddItem("gets <b>bold</b> only a portion of text"),0) = 1 with (oComboBox) TemplateDef = [dim var_Items] TemplateDef = var_Items Template = [var_Items.CellCaptionFormat(AddItem("gets <b>bold</b> only a portion of text"),0) = 1] endwith |
238 |
How do I bold an item
local oComboBox,var_Items oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject oComboBox.Columns.Add("Default") var_Items = oComboBox.Items // var_Items.ItemBold(var_Items.AddItem("bold")) = true with (oComboBox) TemplateDef = [dim var_Items] TemplateDef = var_Items Template = [var_Items.ItemBold(AddItem("bold")) = True] endwith |
237 |
How do I change the foreground color for the item
local h,hC,oComboBox,var_Items oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject oComboBox.Columns.Add("Default") var_Items = oComboBox.Items h = var_Items.AddItem("Root") hC = var_Items.InsertItem(h,null,"Child 1") // var_Items.ItemForeColor(hC) = 0xff with (oComboBox) TemplateDef = [dim var_Items,hC] TemplateDef = var_Items TemplateDef = hC Template = [var_Items.ItemForeColor(hC) = 255] endwith var_Items.InsertItem(h,null,"Child 2") // var_Items.ExpandItem(h) = true with (oComboBox) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.ExpandItem(h) = True] endwith |
236 |
How do I change the visual appearance for the item, using your EBN technology
local h,hC,oComboBox,var_Items oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject oComboBox.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn") oComboBox.Columns.Add("Default") var_Items = oComboBox.Items h = var_Items.AddItem("Root") hC = var_Items.InsertItem(h,null,"Child 1") // var_Items.ItemBackColor(hC) = 0x1000000 with (oComboBox) TemplateDef = [dim var_Items,hC] TemplateDef = var_Items TemplateDef = hC Template = [var_Items.ItemBackColor(hC) = 16777216] endwith var_Items.InsertItem(h,null,"Child 2") // var_Items.ExpandItem(h) = true with (oComboBox) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.ExpandItem(h) = True] endwith |
235 |
How do I change the background color for the item
local h,hC,oComboBox,var_Items oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject oComboBox.Columns.Add("Default") var_Items = oComboBox.Items h = var_Items.AddItem("Root") hC = var_Items.InsertItem(h,null,"Child 1") // var_Items.ItemBackColor(hC) = 0xff with (oComboBox) TemplateDef = [dim var_Items,hC] TemplateDef = var_Items TemplateDef = hC Template = [var_Items.ItemBackColor(hC) = 255] endwith var_Items.InsertItem(h,null,"Child 2") // var_Items.ExpandItem(h) = true with (oComboBox) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.ExpandItem(h) = True] endwith |
234 |
How do I expand or collapse an item
local h,oComboBox,var_Items oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject oComboBox.Columns.Add("Default") var_Items = oComboBox.Items h = var_Items.AddItem("Root") var_Items.InsertItem(h,null,"Child 1") var_Items.InsertItem(h,null,"Child 2") // var_Items.ExpandItem(h) = true with (oComboBox) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.ExpandItem(h) = True] endwith |
233 |
How do I associate an extra data to an item
local oComboBox,var_Items oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject oComboBox.Columns.Add("Default") var_Items = oComboBox.Items // var_Items.ItemData(var_Items.AddItem("item")) = "your extra data" with (oComboBox) TemplateDef = [dim var_Items] TemplateDef = var_Items Template = [var_Items.ItemData(AddItem("item")) = "your extra data"] endwith |
232 |
How do I get the number or count of items
local h,oComboBox,var_Items,var_Items1 oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject oComboBox.Columns.Add("Default") var_Items = oComboBox.Items h = var_Items.AddItem("Root") var_Items.InsertItem(h,null,"Child 1") var_Items.InsertItem(h,null,"Child 2") // var_Items.ExpandItem(h) = true with (oComboBox) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.ExpandItem(h) = True] endwith var_Items1 = oComboBox.Items var_Items1.AddItem(var_Items1.ItemCount) |
231 |
How can I change at runtime the parent of the item
|
230 |
How can I sort the items
local h,oComboBox,var_Items oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject oComboBox.Columns.Add("Default") var_Items = oComboBox.Items h = var_Items.AddItem("Root") var_Items.InsertItem(h,null,"Child 1") var_Items.InsertItem(h,null,"Child 2") // var_Items.ExpandItem(h) = true with (oComboBox) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.ExpandItem(h) = True] endwith oComboBox.Columns.Item("Default").SortOrder = 2 |
229 |
How do I sort the child items
local h,oComboBox,var_Items oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject oComboBox.Columns.Add("Default") var_Items = oComboBox.Items h = var_Items.AddItem("Root") var_Items.InsertItem(h,null,"Child 1") var_Items.InsertItem(h,null,"Child 2") // var_Items.ExpandItem(h) = true with (oComboBox) TemplateDef = [dim var_Items,h] TemplateDef = var_Items TemplateDef = h Template = [var_Items.ExpandItem(h) = True] endwith var_Items.SortChildren(h,0,false) |
228 |
How can I remove or delete all items
|
227 |
How can I remove or delete an item
|
226 |
How can I add or insert child items
|
225 |
How can I add or insert a child item
local oComboBox,var_Items oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject oComboBox.LinesAtRoot = -1 oComboBox.Columns.Add("Default") var_Items = oComboBox.Items var_Items.InsertItem(var_Items.AddItem("root"),null,"child") |
224 |
How can I add or insert an item
|
223 |
How can I add or insert an item
|
222 |
How can I get the columns as they are shown in the control's sortbar
|
221 |
How can I access the properties of a column
|
220 |
How can I remove all the columns
|
219 |
How can I remove a column
|
218 |
How can I get the number or the count of columns
|
217 |
How can I change the font for all cells in the entire column
local f,oComboBox,var_ConditionalFormat oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject f = new OleAutoClient("StdFont") f.Name = "Tahoma" f.Size = 12 var_ConditionalFormat = oComboBox.ConditionalFormats.Add("1") var_ConditionalFormat.Font = f var_ConditionalFormat.ApplyTo = 0 oComboBox.Columns.Add("Column") oComboBox.Items.AddItem(0) oComboBox.Items.AddItem(1) |
216 |
How can I change the background color for all cells in the column
local oComboBox,var_ConditionalFormat oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject var_ConditionalFormat = oComboBox.ConditionalFormats.Add("1") var_ConditionalFormat.BackColor = 0xff var_ConditionalFormat.ApplyTo = 0 oComboBox.Columns.Add("Column") oComboBox.Items.AddItem(0) oComboBox.Items.AddItem(1) |
215 |
How can I change the foreground color for all cells in the column
local oComboBox,var_ConditionalFormat oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject var_ConditionalFormat = oComboBox.ConditionalFormats.Add("1") var_ConditionalFormat.ForeColor = 0xff var_ConditionalFormat.ApplyTo = 0 oComboBox.Columns.Add("Column") oComboBox.Items.AddItem(0) oComboBox.Items.AddItem(1) |
214 |
How can I show as strikeout all cells in the column
|
213 |
How can I underline all cells in the column
local oComboBox,var_ConditionalFormat oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject var_ConditionalFormat = oComboBox.ConditionalFormats.Add("1") var_ConditionalFormat.Underline = true var_ConditionalFormat.ApplyTo = 0 oComboBox.Columns.Add("Column") oComboBox.Items.AddItem(0) oComboBox.Items.AddItem(1) |
212 |
How can I show in italic all data in the column
local oComboBox,var_ConditionalFormat oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject var_ConditionalFormat = oComboBox.ConditionalFormats.Add("1") var_ConditionalFormat.Italic = true var_ConditionalFormat.ApplyTo = 0 oComboBox.Columns.Add("Column") oComboBox.Items.AddItem(0) oComboBox.Items.AddItem(1) |
211 |
How can I bold the entire column
local oComboBox,var_ConditionalFormat oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject var_ConditionalFormat = oComboBox.ConditionalFormats.Add("1") var_ConditionalFormat.Bold = true var_ConditionalFormat.ApplyTo = 0 oComboBox.Columns.Add("Column") oComboBox.Items.AddItem(0) oComboBox.Items.AddItem(1) |
210 |
How can I display a computed column and highlight some values that are negative or less than a value
|
209 |
Can I display a computed column so it displays the VAT, or SUM
local oComboBox,var_Column,var_Items,var_Items1 oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject oComboBox.Columns.Add("A") oComboBox.Columns.Add("B") // oComboBox.Columns.Add("(A+B)*1.19").ComputedField = "(%0 + %1) * 1.19" var_Column = oComboBox.Columns.Add("(A+B)*1.19") with (oComboBox) TemplateDef = [dim var_Column] TemplateDef = var_Column Template = [var_Column.ComputedField = "(%0 + %1) * 1.19"] endwith var_Items = oComboBox.Items // var_Items.CellCaption(var_Items.AddItem(1),1) = 2 with (oComboBox) TemplateDef = [dim var_Items] TemplateDef = var_Items Template = [var_Items.CellCaption(AddItem(1),1) = 2] endwith var_Items1 = oComboBox.Items // var_Items1.CellCaption(var_Items1.AddItem(10),1) = 20 with (oComboBox) TemplateDef = [dim var_Items1] TemplateDef = var_Items1 Template = [var_Items1.CellCaption(AddItem(10),1) = 20] endwith |
208 |
How can I show a column that adds values in the cells
local oComboBox,var_Column,var_Items,var_Items1 oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject oComboBox.Columns.Add("A") oComboBox.Columns.Add("B") // oComboBox.Columns.Add("A+B").ComputedField = "%0 + %1" var_Column = oComboBox.Columns.Add("A+B") with (oComboBox) TemplateDef = [dim var_Column] TemplateDef = var_Column Template = [var_Column.ComputedField = "%0 + %1"] endwith var_Items = oComboBox.Items // var_Items.CellCaption(var_Items.AddItem(1),1) = 2 with (oComboBox) TemplateDef = [dim var_Items] TemplateDef = var_Items Template = [var_Items.CellCaption(AddItem(1),1) = 2] endwith var_Items1 = oComboBox.Items // var_Items1.CellCaption(var_Items1.AddItem(10),1) = 20 with (oComboBox) TemplateDef = [dim var_Items1] TemplateDef = var_Items1 Template = [var_Items1.CellCaption(AddItem(10),1) = 20] endwith |
207 |
Is there any function to filter the control's data as I type, so the items being displayed include the typed characters
local oComboBox,var_Column oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject var_Column = oComboBox.Columns.Add("Filter") var_Column.FilterOnType = true var_Column.DisplayFilterButton = true var_Column.AutoSearch = 1 oComboBox.Items.AddItem("Canada") oComboBox.Items.AddItem("USA") |
206 |
Is there any function to filter the control's data as I type, something like filter on type
|
205 |
How can I programmatically filter a column
local oComboBox,var_Column oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject var_Column = oComboBox.Columns.Add("Filter") var_Column.DisplayFilterButton = true var_Column.FilterType = 2 oComboBox.Items.AddItem() oComboBox.Items.AddItem("not empty") oComboBox.ApplyFilter() |
204 |
How can I show or display the control's filter
local oComboBox,var_Column oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject // oComboBox.Columns.Add("Filter").DisplayFilterButton = true var_Column = oComboBox.Columns.Add("Filter") with (oComboBox) TemplateDef = [dim var_Column] TemplateDef = var_Column Template = [var_Column.DisplayFilterButton = True] endwith |
203 |
How can I customize the items being displayed in the drop down filter window
local oComboBox,var_Column oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject var_Column = oComboBox.Columns.Add("Custom Filter") var_Column.DisplayFilterButton = true var_Column.DisplayFilterPattern = false var_Column.CustomFilter = "Excel Spreadsheets (*.xls )||*.xls|||Word Documents||*.doc|||Powerpoint Presentations||*.pps|||Text Documents (*.log,*.txt)||*.txt|*.log" var_Column.FilterType = 3 var_Column.Filter = "*.xls" oComboBox.Items.AddItem("excel.xls") oComboBox.Items.AddItem("word.doc") oComboBox.Items.AddItem("pp.pps") oComboBox.Items.AddItem("text.txt") oComboBox.ApplyFilter() |
202 |
How can I change the order or the position of the columns in the sort bar
local oComboBox,var_Column,var_Column1 oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject oComboBox.SortBarVisible = true oComboBox.SortBarColumnWidth = 48 // oComboBox.Columns.Add("C1").SortOrder = 1 var_Column = oComboBox.Columns.Add("C1") with (oComboBox) TemplateDef = [dim var_Column] TemplateDef = var_Column Template = [var_Column.SortOrder = 1] endwith // oComboBox.Columns.Add("C2").SortOrder = 2 var_Column1 = oComboBox.Columns.Add("C2") with (oComboBox) TemplateDef = [dim var_Column1] TemplateDef = var_Column1 Template = [var_Column1.SortOrder = 2] endwith oComboBox.Columns.Item("C2").SortPosition = 0 |
201 |
How do I arrange my columns on multiple levels
local oComboBox,var_Column,var_Column1,var_Column2,var_Column3,var_Column4,var_Column5,var_Column6,var_Column7,var_Column8 oComboBox = form.EXCOMBOBOXACTIVEXCONTROL1.nativeObject // oComboBox.Columns.Add("S").Width = 32 var_Column = oComboBox.Columns.Add("S") with (oComboBox) TemplateDef = [dim var_Column] TemplateDef = var_Column Template = [var_Column.Width = 32] endwith // oComboBox.Columns.Add("Level 2").LevelKey = 1 var_Column1 = oComboBox.Columns.Add("Level 2") with (oComboBox) TemplateDef = [dim var_Column1] TemplateDef = var_Column1 Template = [var_Column1.LevelKey = 1] endwith // oComboBox.Columns.Add("Level 3").LevelKey = 1 var_Column2 = oComboBox.Columns.Add("Level 3") with (oComboBox) TemplateDef = [dim var_Column2] TemplateDef = var_Column2 Template = [var_Column2.LevelKey = 1] endwith // oComboBox.Columns.Add("Level 4").LevelKey = 1 var_Column3 = oComboBox.Columns.Add("Level 4") with (oComboBox) TemplateDef = [dim var_Column3] TemplateDef = var_Column3 Template = [var_Column3.LevelKey = 1] endwith // oComboBox.Columns.Add("Level 1").LevelKey = "2" var_Column4 = oComboBox.Columns.Add("Level 1") with (oComboBox) TemplateDef = [dim var_Column4] TemplateDef = var_Column4 Template = [var_Column4.LevelKey = "2"] endwith // oComboBox.Columns.Add("Level 2").LevelKey = "2" var_Column5 = oComboBox.Columns.Add("Level 2") with (oComboBox) TemplateDef = [dim var_Column5] TemplateDef = var_Column5 Template = [var_Column5.LevelKey = "2"] endwith // oComboBox.Columns.Add("Level 3").LevelKey = "2" var_Column6 = oComboBox.Columns.Add("Level 3") with (oComboBox) TemplateDef = [dim var_Column6] TemplateDef = var_Column6 Template = [var_Column6.LevelKey = "2"] endwith // oComboBox.Columns.Add("Level 4").LevelKey = "2" var_Column7 = oComboBox.Columns.Add("Level 4") with (oComboBox) TemplateDef = [dim var_Column7] TemplateDef = var_Column7 Template = [var_Column7.LevelKey = "2"] endwith // oComboBox.Columns.Add("E").Width = 32 var_Column8 = oComboBox.Columns.Add("E") with (oComboBox) TemplateDef = [dim var_Column8] TemplateDef = var_Column8 Template = [var_Column8.Width = 32] endwith |